Skip to content

Conversation

matthiaskrgr
Copy link
Member

@matthiaskrgr matthiaskrgr commented Sep 26, 2025

Successful merges:

Failed merges:

r? @ghost
@rustbot modify labels: rollup

Create a similar rollup

thejpster and others added 23 commits September 14, 2025 09:49
These targets are not widely used, and are difficult to test because
qemu-system-arm cannot emulate them.
Until now, x86_64-pc-windows-gnu linked `rsbegin.o` and `rsend.o` just
like i686-pc-windows-gnu, even though they were no-ops for it.
This was likely done for the simplicity back when it was introduced.

Today the things are different and these startup/end objects harm other
features, like `build-std`. Given the demotion of i686-pc-windows-gnu
from tier 1, there is no point in hurting x86_64-pc-windows-gnu,
which remains a tier 1.

The files are still shipped in case downstream crates expect them, as in
case of the unmaintained `xargo`.
Use llfn_attrs_from_instance() to generate the attributes for the
allocator shim. This ensures that we generate all the usual
attributes (and don't get to find out one-by-one that a certain
attribute is important for a certain target). Additionally this
will enable emitting the allocator-specific attributes (not
included here).

This change is quite awkward because the allocator shim uses
SimpleCx, while llfn_attrs_from_instance uses CodegenCx. I've
switched it to use SimpleCx plus tcx/sess arguments where necessary.
If there's a simpler way to do this, I'd love to know about it...
Eliminate a use of `map_or` in favor of a match.

Inline some variable definitions that don't add clarity, and that
prevent short-circuiting.
I.e. do not mark them as used, or non-speculative loaded, or similar.
Previously they were sometimes finalized during early resolution, causing issues like rust-lang#144793 (comment).
resolve: Do not finalize shadowed bindings

I.e. do not mark them as used, or non-speculatively loaded, or similar.
Previously they were sometimes finalized during early resolution, causing issues like rust-lang#144793 (comment).
… r=jackh726

Demote both armebv7r-none-* targets.

OK, slightly more controversial than rust-lang#146520 and rust-lang#146522  - I'd like to drop the bare-metal **big-endian** Armv7-R targets down to Tier 3.

The reason is simple - we cannot test them in https://github.com/rust-embedded/cortex-ar/. This because QEMU support for Big Endian Armv7-R is broken. I tried quite hard, but all the strings I printed with semihosting came out byte swapped (or "etybawa depp") because of how QEMU kludges the access to memory in big-endian mode.

The target also has only a single maintainer. Although, if ````@chrisnc```` wants to put up a case for keeping it at Tier 2 though, I'm happy to hear it!

This PR wil be rebased once rust-lang#146419 completes the queue.
…, r=petrochenkov

port `#[debugger_visualizer]` to the new attribute system
… r=petrochenkov

Stop linking rs{begin,end} objects on x86_64-*-windows-gnu

Until now, x86_64-pc-windows-gnu linked `rsbegin.o` and `rsend.o` just like i686-pc-windows-gnu, even though they were no-ops for it. This was likely done for the simplicity back when it was introduced.
Today the things are different and these startup/end objects harm other features, like `build-std`. Given the demotion of i686-pc-windows-gnu from tier 1, there is no point in hurting x86_64-pc-windows-gnu, which remains a tier 1.

The files are still shipped in case downstream crates expect them, as in case of the unmaintained `xargo`.

Fixes rust-lang#146739
…=jackh726

Use standard attribute logic for allocator shim

Use llfn_attrs_from_instance() to generate the attributes for the allocator shim. This ensures that we generate all the usual attributes (and don't get to find out one-by-one that a certain attribute is important for a certain target). Additionally this will enable emitting the allocator-specific attributes (not included here).

This change is quite awkward because the allocator shim uses SimpleCx, while llfn_attrs_from_instance uses CodegenCx. I've switched it to use SimpleCx plus tcx/sess arguments where necessary. If there's a simpler way to do this, I'd love to know about it...
…ang, r=petrochenkov

Reduce some uses of `LegacyBang`

- **Switch `dummy_bang` from `LegacyBang` to `Bang`**
- **mbe: Switch dummy extension used for errors from `LegacyBang` to `Bang`**
…or, r=lolbinarycat

Add new `tyalias` intra-doc link disambiguator

Fixes rust-lang#146855.

Alternative to rust-lang#146866.

This adds support for a new disambiguator: `tyalias`. I think it's common enough to have type aliases nowaday, so no reason to not be able to have a disambiguator for them.

cc ``@fmease``
r? lolbinarycat
mbe: Simplify check_redundant_vis_repetition

Eliminate a use of `map_or` in favor of a match.

Inline some variable definitions that don't add clarity, and that
prevent short-circuiting.
…s, r=Kobzol

Ignore more failing ui tests for GCC backend

Needed for rust-lang#146414.

r? ``@Kobzol``
@rustbot rustbot added A-attributes Area: Attributes (`#[…]`, `#![…]`) A-LLVM Area: Code generation parts specific to LLVM. Both correctness bugs and optimization-related issues. A-query-system Area: The rustc query system (https://rustc-dev-guide.rust-lang.org/query.html) F-explicit_tail_calls `#![feature(explicit_tail_calls)]` O-unix Operating system: Unix-like PG-exploit-mitigations Project group: Exploit mitigations S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Sep 26, 2025
@rustbot rustbot added T-rust-analyzer Relevant to the rust-analyzer team, which will review and decide on the PR/issue. T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue. T-rustdoc-frontend Relevant to the rustdoc-frontend team, which will review and decide on the web UI/UX output. T-rustfmt Relevant to the rustfmt team, which will review and decide on the PR/issue. rollup A PR which is a rollup labels Sep 26, 2025
@matthiaskrgr
Copy link
Member Author

@bors r+ rollup=never p=5

@bors
Copy link
Collaborator

bors commented Sep 26, 2025

📌 Commit a91918f has been approved by matthiaskrgr

It is now in the queue for this repository.

@bors bors added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Sep 26, 2025
@bors
Copy link
Collaborator

bors commented Sep 26, 2025

⌛ Testing commit a91918f with merge ec37393...

bors added a commit that referenced this pull request Sep 26, 2025
Rollup of 10 pull requests

Successful merges:

 - #145113 (resolve: Do not finalize shadowed bindings)
 - #146523 (Demote both armebv7r-none-* targets.)
 - #146704 (port `#[debugger_visualizer]` to the new attribute system)
 - #146758 (Stop linking rs{begin,end} objects on x86_64-*-windows-gnu)
 - #146778 (Use standard attribute logic for allocator shim)
 - #146849 (Reduce some uses of `LegacyBang`)
 - #147016 (fix doc comments to be more standard)
 - #147027 (Add new `tyalias` intra-doc link disambiguator)
 - #147031 (mbe: Simplify check_redundant_vis_repetition)
 - #147058 (Ignore more failing ui tests for GCC backend)

Failed merges:

 - #147046 (Rename `rust.use-lld` to `rust.bootstrap-override-lld`)

r? `@ghost`
`@rustbot` modify labels: rollup
@matthiaskrgr
Copy link
Member Author

@bors retry dist-x86_64-linux stuck after 5 hours

@bors
Copy link
Collaborator

bors commented Sep 27, 2025

⌛ Testing commit a91918f with merge e131842...

@bors
Copy link
Collaborator

bors commented Sep 27, 2025

☀️ Test successful - checks-actions
Approved by: matthiaskrgr
Pushing e131842 to master...

@bors bors added the merged-by-bors This PR was explicitly merged by bors. label Sep 27, 2025
@bors bors merged commit e131842 into rust-lang:master Sep 27, 2025
11 checks passed
@rustbot rustbot added this to the 1.92.0 milestone Sep 27, 2025
@rust-timer
Copy link
Collaborator

📌 Perf builds for each rolled up PR:

PR# Message Perf Build Sha
#145113 resolve: Do not finalize shadowed bindings d9ca0de58ffbfccb66a7fc1605e5592e4749c8c7 (link)
#146523 Demote both armebv7r-none-* targets. b1630f9025acb84c75eab241aefadc0719cd7530 (link)
#146704 port #[debugger_visualizer] to the new attribute system ee91e31da758d675a87ba2a77ef8d1be946f7291 (link)
#146758 Stop linking rs{begin,end} objects on x86_64-*-windows-gnu dcb62381574f5e7f978093c027efb15c76d71979 (link)
#146778 Use standard attribute logic for allocator shim 9c6d815994d8e1712d8d23945eeb18ef67c750cf (link)
#146849 Reduce some uses of LegacyBang 0e0e90cad1883be85f2608aa1e4100102a05cdf7 (link)
#147016 fix doc comments to be more standard e511126d7ce781b54d3ab90dfccd98bbff2c2698 (link)
#147027 Add new tyalias intra-doc link disambiguator abfb72e7cd76ff9e4cba9d971d2cc39cf49061b7 (link)
#147031 mbe: Simplify check_redundant_vis_repetition 161d65e150af85ba6129d1f50ee32be441b7c203 (link)
#147058 Ignore more failing ui tests for GCC backend 39d875a2254fb895c5def5ffaaf22f0fe285d986 (link)

previous master: 54a8a1db60

In the case of a perf regression, run the following command for each PR you suspect might be the cause: @rust-timer build $SHA

Copy link
Contributor

What is this? This is an experimental post-merge analysis report that shows differences in test outcomes between the merged PR and its parent PR.

Comparing 54a8a1d (parent) -> e131842 (this PR)

Test differences

Show 354 test diffs

Stage 0

  • errors::verify_passes_attr_application_struct_union_104: pass -> [missing] (J1)
  • errors::verify_passes_attr_only_in_functions_92: [missing] -> pass (J1)
  • errors::verify_passes_cannot_stabilize_deprecated_109: pass -> [missing] (J1)
  • errors::verify_passes_custom_mir_phase_requires_dialect_138: [missing] -> pass (J1)
  • errors::verify_passes_debug_visualizer_placement_58: pass -> [missing] (J1)
  • errors::verify_passes_debug_visualizer_unreadable_60: pass -> [missing] (J1)
  • errors::verify_passes_deprecated_annotation_has_no_effect_72: pass -> [missing] (J1)
  • errors::verify_passes_duplicate_diagnostic_item_in_crate_81: pass -> [missing] (J1)
  • errors::verify_passes_feature_previously_declared_91: [missing] -> pass (J1)
  • errors::verify_passes_feature_stable_twice_90: [missing] -> pass (J1)
  • errors::verify_passes_feature_stable_twice_92: pass -> [missing] (J1)
  • errors::verify_passes_ineffective_unstable_impl_126: pass -> [missing] (J1)
  • errors::verify_passes_lang_item_fn_with_target_feature_76: [missing] -> pass (J1)
  • errors::verify_passes_layout_align_83: pass -> [missing] (J1)
  • errors::verify_passes_layout_homogeneous_aggregate_85: pass -> [missing] (J1)
  • errors::verify_passes_layout_of_84: [missing] -> pass (J1)
  • errors::verify_passes_may_dangle_64: [missing] -> pass (J1)
  • errors::verify_passes_missing_const_stab_attr_112: pass -> [missing] (J1)
  • errors::verify_passes_missing_lang_item_74: [missing] -> pass (J1)
  • errors::verify_passes_missing_stability_attr_111: pass -> [missing] (J1)
  • errors::verify_passes_multiple_rustc_main_93: [missing] -> pass (J1)
  • errors::verify_passes_multiple_rustc_main_95: pass -> [missing] (J1)
  • errors::verify_passes_object_lifetime_err_101: pass -> [missing] (J1)
  • errors::verify_passes_object_lifetime_err_99: [missing] -> pass (J1)
  • errors::verify_passes_repr_align_should_be_align_136: [missing] -> pass (J1)
  • errors::verify_passes_repr_align_should_be_align_138: pass -> [missing] (J1)
  • errors::verify_passes_repr_align_should_be_align_static_137: [missing] -> pass (J1)
  • errors::verify_passes_rustc_allow_const_fn_unstable_59: [missing] -> pass (J1)
  • errors::verify_passes_rustc_force_inline_coro_61: [missing] -> pass (J1)
  • errors::verify_passes_rustc_lint_opt_deny_field_access_70: pass -> [missing] (J1)
  • errors::verify_passes_rustc_pub_transparent_62: pass -> [missing] (J1)
  • errors::verify_passes_transparent_incompatible_104: [missing] -> pass (J1)
  • errors::verify_passes_transparent_incompatible_106: pass -> [missing] (J1)
  • errors::verify_passes_unexportable_type_in_interface_133: [missing] -> pass (J1)
  • errors::verify_passes_unexportable_type_repr_134: pass -> [missing] (J1)
  • errors::verify_passes_unknown_feature_112: [missing] -> pass (J1)
  • errors::verify_passes_unknown_feature_alias_115: pass -> [missing] (J1)
  • errors::verify_passes_unknown_lang_item_78: [missing] -> pass (J1)
  • errors::verify_passes_unknown_lang_item_80: pass -> [missing] (J1)
  • errors::verify_passes_unnecessary_partial_stable_feature_125: pass -> [missing] (J1)
  • errors::verify_passes_unreachable_due_to_uninhabited_119: [missing] -> pass (J1)
  • errors::verify_passes_unreachable_due_to_uninhabited_121: pass -> [missing] (J1)
  • errors::verify_passes_unrecognized_argument_91: pass -> [missing] (J1)
  • errors::verify_passes_unstable_attr_for_already_stable_feature_110: pass -> [missing] (J1)
  • errors::verify_passes_unsupported_attributes_in_where_130: pass -> [missing] (J1)
  • errors::verify_passes_unused_assign_passed_127: pass -> [missing] (J1)
  • errors::verify_passes_unused_multiple_66: [missing] -> pass (J1)
  • errors::verify_passes_unused_multiple_68: pass -> [missing] (J1)
  • errors::verify_passes_unused_var_maybe_capture_ref_122: pass -> [missing] (J1)
  • errors::verify_passes_useless_assignment_99: pass -> [missing] (J1)

Stage 1

  • errors::verify_passes_abi_ne_87: [missing] -> pass (J0)
  • errors::verify_passes_abi_ne_89: pass -> [missing] (J0)
  • errors::verify_passes_abi_of_88: pass -> [missing] (J0)
  • errors::verify_passes_attr_application_enum_102: pass -> [missing] (J0)
  • errors::verify_passes_attr_application_struct_101: [missing] -> pass (J0)
  • errors::verify_passes_attr_application_struct_union_102: [missing] -> pass (J0)
  • errors::verify_passes_attr_only_in_functions_94: pass -> [missing] (J0)
  • errors::verify_passes_cannot_stabilize_deprecated_109: pass -> [missing] (J0)
  • errors::verify_passes_collapse_debuginfo_69: [missing] -> pass (J0)
  • errors::verify_passes_collapse_debuginfo_71: pass -> [missing] (J0)
  • errors::verify_passes_const_stable_not_stable_117: [missing] -> pass (J0)
  • errors::verify_passes_debug_visualizer_invalid_59: pass -> [missing] (J0)
  • errors::verify_passes_deprecated_annotation_has_no_effect_72: pass -> [missing] (J0)
  • errors::verify_passes_duplicate_diagnostic_item_in_crate_79: [missing] -> pass (J0)
  • errors::verify_passes_duplicate_diagnostic_item_in_crate_81: pass -> [missing] (J0)
  • errors::verify_passes_extern_main_96: pass -> [missing] (J0)
  • errors::verify_passes_feature_stable_twice_92: pass -> [missing] (J0)
  • errors::verify_passes_implied_feature_not_exist_114: [missing] -> pass (J0)
  • errors::verify_passes_incorrect_crate_type_98: pass -> [missing] (J0)
  • errors::verify_passes_incorrect_target_95: [missing] -> pass (J0)
  • errors::verify_passes_incorrect_target_97: pass -> [missing] (J0)
  • errors::verify_passes_inline_ignored_for_exported_98: [missing] -> pass (J0)
  • errors::verify_passes_lang_item_fn_with_target_feature_78: pass -> [missing] (J0)
  • errors::verify_passes_lang_item_fn_with_track_caller_77: pass -> [missing] (J0)
  • errors::verify_passes_layout_invalid_attribute_85: [missing] -> pass (J0)
  • errors::verify_passes_may_dangle_64: [missing] -> pass (J0)
  • errors::verify_passes_may_dangle_66: pass -> [missing] (J0)
  • errors::verify_passes_missing_const_stab_attr_110: [missing] -> pass (J0)
  • errors::verify_passes_missing_panic_handler_74: pass -> [missing] (J0)
  • errors::verify_passes_multiple_rustc_main_95: pass -> [missing] (J0)
  • errors::verify_passes_object_lifetime_err_99: [missing] -> pass (J0)
  • errors::verify_passes_repr_align_should_be_align_static_139: pass -> [missing] (J0)
  • errors::verify_passes_rustc_force_inline_coro_63: pass -> [missing] (J0)
  • errors::verify_passes_unexportable_adt_with_private_fields_135: [missing] -> pass (J0)
  • errors::verify_passes_unexportable_adt_with_private_fields_137: pass -> [missing] (J0)
  • errors::verify_passes_unexportable_priv_item_136: pass -> [missing] (J0)
  • errors::verify_passes_unexportable_type_in_interface_135: pass -> [missing] (J0)
  • errors::verify_passes_unknown_external_lang_item_73: pass -> [missing] (J0)
  • errors::verify_passes_unknown_feature_114: pass -> [missing] (J0)
  • errors::verify_passes_unknown_lang_item_80: pass -> [missing] (J0)
  • errors::verify_passes_unnecessary_partial_stable_feature_123: [missing] -> pass (J0)
  • errors::verify_passes_unnecessary_partial_stable_feature_125: pass -> [missing] (J0)
  • errors::verify_passes_unrecognized_argument_91: pass -> [missing] (J0)
  • errors::verify_passes_unused_assign_passed_125: [missing] -> pass (J0)
  • errors::verify_passes_unused_capture_maybe_capture_ref_123: pass -> [missing] (J0)
  • errors::verify_passes_unused_duplicate_65: [missing] -> pass (J0)
  • errors::verify_passes_unused_multiple_66: [missing] -> pass (J0)
  • errors::verify_passes_unused_var_maybe_capture_ref_122: pass -> [missing] (J0)
  • errors::verify_passes_useless_stability_108: pass -> [missing] (J0)

Stage 2

  • [rustdoc] tests/rustdoc/intra-doc/type-alias-primitive.rs: [missing] -> pass (J2)

(and 240 additional test diffs)

Additionally, 14 doctest diffs were found. These are ignored, as they are noisy.

Job group index

Test dashboard

Run

cargo run --manifest-path src/ci/citool/Cargo.toml -- \
    test-dashboard e1318422222101423fdbbe0f375109c3b40f75bc --output-dir test-dashboard

And then open test-dashboard/index.html in your browser to see an overview of all executed tests.

Job duration changes

  1. dist-aarch64-linux: 8952.0s -> 6057.6s (-32.3%)
  2. dist-x86_64-apple: 7673.7s -> 6082.6s (-20.7%)
  3. pr-check-2: 2138.6s -> 2575.9s (20.4%)
  4. aarch64-apple: 6852.4s -> 5822.6s (-15.0%)
  5. x86_64-rust-for-linux: 2672.0s -> 2997.5s (12.2%)
  6. x86_64-msvc-ext3: 5965.2s -> 6680.6s (12.0%)
  7. x86_64-msvc-1: 8145.8s -> 9088.8s (11.6%)
  8. x86_64-msvc-2: 6378.5s -> 7101.4s (11.3%)
  9. dist-aarch64-apple: 7592.3s -> 6755.6s (-11.0%)
  10. dist-aarch64-msvc: 6278.5s -> 5619.5s (-10.5%)
How to interpret the job duration changes?

Job durations can vary a lot, based on the actual runner instance
that executed the job, system noise, invalidated caches, etc. The table above is provided
mostly for t-infra members, for simpler debugging of potential CI slow-downs.

@rust-timer
Copy link
Collaborator

Finished benchmarking commit (e131842): comparison URL.

Overall result: ❌✅ regressions and improvements - please read the text below

Our benchmarks found a performance regression caused by this PR.
This might be an actual regression, but it can also be just noise.

Next Steps:

  • If the regression was expected or you think it can be justified,
    please write a comment with sufficient written justification, and add
    @rustbot label: +perf-regression-triaged to it, to mark the regression as triaged.
  • If you think that you know of a way to resolve the regression, try to create
    a new PR with a fix for the regression.
  • If you do not understand the regression or you think that it is just noise,
    you can ask the @rust-lang/wg-compiler-performance working group for help (members of this group
    were already notified of this PR).

@rustbot label: +perf-regression
cc @rust-lang/wg-compiler-performance

Instruction count

Our most reliable metric. Used to determine the overall result above. However, even this metric can be noisy.

mean range count
Regressions ❌
(primary)
0.2% [0.2%, 0.3%] 4
Regressions ❌
(secondary)
0.3% [0.1%, 0.5%] 3
Improvements ✅
(primary)
-0.3% [-0.3%, -0.3%] 1
Improvements ✅
(secondary)
- - 0
All ❌✅ (primary) 0.1% [-0.3%, 0.3%] 5

Max RSS (memory usage)

Results (primary 1.5%, secondary 0.2%)

A less reliable metric. May be of interest, but not used to determine the overall result above.

mean range count
Regressions ❌
(primary)
1.5% [0.9%, 2.2%] 10
Regressions ❌
(secondary)
1.4% [0.7%, 2.5%] 4
Improvements ✅
(primary)
- - 0
Improvements ✅
(secondary)
-1.4% [-1.4%, -1.4%] 3
All ❌✅ (primary) 1.5% [0.9%, 2.2%] 10

Cycles

Results (primary -3.2%, secondary -6.0%)

A less reliable metric. May be of interest, but not used to determine the overall result above.

mean range count
Regressions ❌
(primary)
- - 0
Regressions ❌
(secondary)
3.1% [3.1%, 3.1%] 1
Improvements ✅
(primary)
-3.2% [-3.5%, -2.9%] 4
Improvements ✅
(secondary)
-6.8% [-10.5%, -2.2%] 12
All ❌✅ (primary) -3.2% [-3.5%, -2.9%] 4

Binary size

Results (secondary -0.0%)

A less reliable metric. May be of interest, but not used to determine the overall result above.

mean range count
Regressions ❌
(primary)
- - 0
Regressions ❌
(secondary)
- - 0
Improvements ✅
(primary)
- - 0
Improvements ✅
(secondary)
-0.0% [-0.0%, -0.0%] 1
All ❌✅ (primary) - - 0

Bootstrap: 471.437s -> 470.04s (-0.30%)
Artifact size: 388.14 MiB -> 388.10 MiB (-0.01%)

@rustbot rustbot added the perf-regression Performance regression. label Sep 27, 2025
@Mark-Simulacrum Mark-Simulacrum added perf-regression Performance regression. perf-regression-triaged The performance regression has been triaged. and removed perf-regression Performance regression. labels Sep 29, 2025
@Mark-Simulacrum
Copy link
Member

It looks likely that we're emitting more diagnostics or hitting fluent more often, but I don't see anything obvious in the PR that would cause that.

$ cargo run --release --bin collector profile_local cachegrind +54a8a1db604e4caff93e26e167ad4a6fde9f0681 --rustc2 +e1318422222101423fdbbe0f375109c3b40f75bc --exact-match nalgebra-0.33.0 --profiles Check --scenarios IncrUnchanged
< 10,593,970  ???:
   2,903,745    <fluent_syntax::parser::core::Parser<&str>>::get_pattern
   1,803,253    <fluent_bundle::resource::FluentResource>::try_new
  -1,545,551    rustc_incremental::persist::load::setup_dep_graph
   1,303,918    <hashbrown::raw::RawTable<((usize, rustc_data_structures::stable_hasher::HashingControls), rustc_data_structures::fingerprint::Fingerprint)>>::reserve_rehash::<hashbrown::map::make_hasher<(usize, rustc_data_structures::stable_hasher::HashingControls), rustc_data_structures::fingerprint::Fingerprint, rustc_hash::FxBuildHasher>::{closure#0}>
  -1,303,900    <hashbrown::raw::RawTable<((*const (), rustc_data_structures::stable_hasher::HashingControls), rustc_data_structures::fingerprint::Fingerprint)>>::reserve_rehash::<hashbrown::map::make_hasher<(*const (), rustc_data_structures::stable_hasher::HashingControls), rustc_data_structures::fingerprint::Fingerprint, rustc_hash::FxBuildHasher>::{closure#0>
  -1,217,755    <hashbrown::raw::RawTable<(rustc_span::symbol::Symbol, &rustc_hir::hir::FieldDef)>>::reserve_rehash::<hashbrown::map::make_hasher<rustc_span::symbol::Symbol, &rustc_hir::hir::FieldDef, rustc_hash::FxBuildHasher>::{closure#0}>
   1,217,755    <hashbrown::raw::RawTable<(rustc_hir_id::ItemLocalId, rustc_middle::ty::Ty)>>::reserve_rehash::<hashbrown::map::make_hasher<rustc_hir_id::ItemLocalId, rustc_middle::ty::Ty, rustc_hash::FxBuildHasher>::{closure#0}>
     890,169    malloc_default
     658,856    tcache_bin_flush_small
     620,871    <fluent_syntax::parser::core::Parser<&str>>::get_placeable

@Mark-Simulacrum
Copy link
Member

Given the limited set of scenarios affected (mostly just nalgebra) I'm going to mark this as triaged. I don't think it's worth trying to pick out individual PRs from the rollup to figure out what happened hre.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-attributes Area: Attributes (`#[…]`, `#![…]`) A-LLVM Area: Code generation parts specific to LLVM. Both correctness bugs and optimization-related issues. A-query-system Area: The rustc query system (https://rustc-dev-guide.rust-lang.org/query.html) F-explicit_tail_calls `#![feature(explicit_tail_calls)]` merged-by-bors This PR was explicitly merged by bors. O-unix Operating system: Unix-like perf-regression Performance regression. perf-regression-triaged The performance regression has been triaged. PG-exploit-mitigations Project group: Exploit mitigations rollup A PR which is a rollup S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap) T-clippy Relevant to the Clippy team. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-libs Relevant to the library team, which will review and decide on the PR/issue. T-rust-analyzer Relevant to the rust-analyzer team, which will review and decide on the PR/issue. T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue. T-rustdoc-frontend Relevant to the rustdoc-frontend team, which will review and decide on the web UI/UX output. T-rustfmt Relevant to the rustfmt team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging this pull request may close these issues.